home *** CD-ROM | disk | FTP | other *** search
- <%--
- --%>
- <%@ page errorPage="../include/PaginaErrore.jsp" %>
- <%@ taglib prefix='c' uri='http://java.sun.com/jstl/core' %>
-
- <SPAN CLASS="sidebar-titolo">Area clienti</SPAN><BR>
- <c:if test="${empty sessionScope.utenteConnesso}">
- <FORM ACTION="controller?op=utenti.login" METHOD="post">
- Utente<BR>
- <INPUT NAME="utente" SIZE="10" /><BR>
- Password<BR>
- <INPUT NAME="password" SIZE="10" TYPE="password" /><BR>
- <INPUT TYPE="submit" VALUE="Entra"/>
- </FORM>
- <P>
- <A HREF="controller?op=utenti.nuovo">Sei un nuovo utente?</A><BR>
- <A HREF="controller?op=utenti.passwordPersa">Hai perso la password?</A><BR>
- <P>
- </c:if>
- <c:if test="${!empty sessionScope.utenteConnesso}">
- Benvenuto <c:out value="${sessionScope.utenteConnesso.descrizione}"/>
- <P>
- <A HREF="controller?op=ordini.elenco">Ordini precedenti</A><BR>
- <P>
- <A HREF="controller?op=utenti.logout">Disconnessione</A><BR>
- </c:if>
-
-